home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / FTELL.C < prev    next >
C/C++ Source or Header  |  1996-08-08  |  157b  |  11 lines

  1. #include <stdio.h>
  2. #include <time.h>
  3. #include <libp.h>
  4.  
  5. long ftell(FILE *stream)
  6. {
  7.     long rv=0;
  8.     if (fgetpos(stream,&rv))
  9.         return -1;
  10.     return rv;
  11. }